home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / wais / waisgate / HTDaemon.h < prev    next >
C/C++ Source or Header  |  1995-05-09  |  398b  |  23 lines

  1. /*        Calls back to HTDaemon program
  2. **        ------------------------------
  3. */
  4. #ifndef HTDAEMON_H
  5. #define HTDAEMON_H
  6.  
  7. #include "HTFormat.h"
  8.  
  9. /*    These routines are used to send back appropriate
  10. **    protocol header fields preceding a message.
  11. */
  12.  
  13. extern void HTSendError PARAMS((
  14.     int                 soc, 
  15.     int            number,
  16.     CONST char *            msg));
  17.     
  18. extern void HTSendHeader PARAMS((
  19.     int         soc, 
  20.     HTFormat    rep));
  21.  
  22. #endif
  23.